home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
ContinueLoop.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
180b
|
8 lines
;Print all numbers from 1 to 10 except number 7
For $i = 1 to 10
If $i = 7 Then ContinueLoop
MsgBox(0, "The value of $i is:", $i)
Next
;Example of using level is needed.